home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-01 / cppwin10.zip / CDLG1.HPP < prev    next >
C/C++ Source or Header  |  1991-01-11  |  312b  |  18 lines

  1. /***
  2.     Test class for testing the CDlg class
  3.     Header file.
  4. ***/
  5.  
  6. #ifndef CDlg1_INC
  7. #define CDlg1_INC
  8.  
  9. #include "cdlg.hpp"
  10.  
  11. class CDlg1 : public CDlg {
  12.     public:
  13.         BOOL DoCommand(WORD ControlID, LONG lParam);
  14.         /*int DoDialog(HANDLE hInst, LPSTR lpDlgName, HWND hParent, LONG lParam);*/
  15.  
  16. };
  17. #endif
  18.